import * as React from "react" import { BidProjectsContainer } from "@/components/bidding-projects/bid-projects-container" import { Shell } from "@/components/shell" import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" // Layout 컴포넌트는 서버 컴포넌트입니다 export default function BidProjectsLayout({ children, }: { children: React.ReactNode }) { // 프로젝트 타입 정의 const projectTypes = [ { id: "all", name: "전체" }, { id: "SHIP", name: "조선" }, { id: "TOP", name: "해양 TOP" }, { id: "HULL", name: "해양 HULL" }, ] return ( } > {children} ) }